home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / xbtx.lha / Source / RawKeys.h < prev    next >
C/C++ Source or Header  |  1995-10-13  |  3KB  |  77 lines

  1. /*
  2. **    $Id: RawKeys.h 1.4 1995/10/13 11:43:06 olsen Exp olsen $
  3. **
  4. **    :ts=4
  5. */
  6.  
  7. #ifndef _RAWKEYS_H
  8. #define _RAWKEYS_H 1
  9.  
  10. /*
  11.  * Copyright © 1995 by Olaf Barthel, All Rights Reserved
  12.  *
  13.  * Redistribution and use in source and binary forms, with or without
  14.  * modification, are permitted provided that the following conditions
  15.  * are met:
  16.  * 1. Redistributions of source code must retain the above copyright
  17.  *    notice, this list of conditions and the following disclaimer.
  18.  * 2. Redistributions in binary form must reproduce the above copyright
  19.  *    notice, this list of conditions and the following disclaimer in the
  20.  *    documentation and/or other materials provided with the distribution.
  21.  *
  22.  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
  23.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  24.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
  25.  * EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  26.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  27.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  28.  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  29.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  30.  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  31.  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32.  *
  33.  * This software has not been validated by the ``Bundesamt fuer Zulassungen in
  34.  * der Telekommunikation'' of the ``Deutsche Bundepost Telekom'' and thus
  35.  * must not be used for accessing the BTX-Network of the Telekom in Germany.
  36.  *
  37.  * Diese Software hat keine Zulassung durch das Bundesamt fuer Zulassungen in
  38.  * der Telekommunikation der Deutschen Bundespost Telekom und darf daher nicht
  39.  * am Netz der Deutschen Bundespost Telekom in Deutschland betrieben werden.
  40.  */
  41.  
  42. #define KEY_CursorUp        0x80
  43. #define KEY_CursorDown        0x81
  44. #define KEY_CursorRight     0x82
  45. #define KEY_CursorLeft        0x83
  46.  
  47. #define KEY_Help            0x84
  48.  
  49. #define RAWKEY_CursorUp     0x4C
  50. #define RAWKEY_CursorDown    0x4D
  51. #define RAWKEY_CursorRight    0x4E
  52. #define RAWKEY_CursorLeft    0x4F
  53.  
  54. #define RAWKEY_F1            0x50
  55. #define RAWKEY_F2            0x51
  56. #define RAWKEY_F3            0x52
  57. #define RAWKEY_F4            0x53
  58. #define RAWKEY_F5            0x54
  59. #define RAWKEY_F6            0x55
  60. #define RAWKEY_F7            0x56
  61. #define RAWKEY_F8            0x57
  62. #define RAWKEY_F9            0x58
  63. #define RAWKEY_F10            0x59
  64.  
  65. #define RAWKEY_Help         0x5F
  66.  
  67. #define RAWKEY_LShift        0x60
  68. #define RAWKEY_RShift        0x61
  69. #define RAWKEY_CapsLock     0x62
  70. #define RAWKEY_Ctrl         0x63
  71. #define RAWKEY_LAlt         0x64
  72. #define RAWKEY_RAlt         0x65
  73. #define RAWKEY_LAmiga        0x66
  74. #define RAWKEY_RAmiga        0x67
  75.  
  76. #endif    // _RAWKEYS_H
  77.